home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 3 / Gold Medal Software - Volume 3 (Gold Medal) (1994).iso / windows / editprog / newvisda.arj / ABOUTBOX.FRM (.txt) next >
Encoding:
Visual Basic Form  |  1994-04-03  |  2.9 KB  |  98 lines

  1. VERSION 2.00
  2. Begin Form AboutBox 
  3.    BackColor       =   &H00C0C0C0&
  4.    BorderStyle     =   1  'Fixed Single
  5.    Caption         =   "About VISNEWDA"
  6.    ClientHeight    =   2115
  7.    ClientLeft      =   5280
  8.    ClientTop       =   3870
  9.    ClientWidth     =   4995
  10.    ControlBox      =   0   'False
  11.    FontBold        =   -1  'True
  12.    FontItalic      =   0   'False
  13.    FontName        =   "System"
  14.    FontSize        =   9.75
  15.    FontStrikethru  =   0   'False
  16.    FontUnderline   =   0   'False
  17.    Height          =   2580
  18.    Icon            =   ABOUTBOX.FRX:0000
  19.    Left            =   5190
  20.    LinkMode        =   1  'Source
  21.    LinkTopic       =   "Form1"
  22.    MaxButton       =   0   'False
  23.    MinButton       =   0   'False
  24.    ScaleHeight     =   2115
  25.    ScaleWidth      =   4995
  26.    Top             =   3495
  27.    Width           =   5175
  28.    Begin PictureBox PIC_Icon 
  29.       BackColor       =   &H00C0C0C0&
  30.       BorderStyle     =   0  'None
  31.       Height          =   600
  32.       Left            =   480
  33.       Picture         =   ABOUTBOX.FRX:0302
  34.       ScaleHeight     =   600
  35.       ScaleWidth      =   480
  36.       TabIndex        =   1
  37.       Top             =   240
  38.       Width           =   480
  39.    End
  40.    Begin CommandButton OkayButton 
  41.       Cancel          =   -1  'True
  42.       Caption         =   "&OK"
  43.       Default         =   -1  'True
  44.       Height          =   360
  45.       Left            =   2040
  46.       TabIndex        =   0
  47.       Top             =   1560
  48.       Width           =   1080
  49.    End
  50.    Begin Label LAB_1 
  51.       Alignment       =   2  'Center
  52.       AutoSize        =   -1  'True
  53.       BackColor       =   &H00C0C0C0&
  54.       Caption         =   "Robert E. Smythe's"
  55.       ForeColor       =   &H000000FF&
  56.       Height          =   195
  57.       Left            =   1755
  58.       TabIndex        =   2
  59.       Top             =   360
  60.       Width           =   1665
  61.    End
  62.    Begin Label LAB_2 
  63.       Alignment       =   2  'Center
  64.       AutoSize        =   -1  'True
  65.       BackColor       =   &H00C0C0C0&
  66.       Caption         =   "VISNEWDA"
  67.       ForeColor       =   &H000000FF&
  68.       Height          =   195
  69.       Left            =   2130
  70.       TabIndex        =   3
  71.       Top             =   840
  72.       Width           =   1035
  73.    End
  74.    Begin Label Label1 
  75.       Alignment       =   2  'Center
  76.       AutoSize        =   -1  'True
  77.       BackColor       =   &H00C0C0C0&
  78.       Caption         =   "Version 3.1 Beta 1994"
  79.       ForeColor       =   &H000000FF&
  80.       Height          =   195
  81.       Left            =   1680
  82.       TabIndex        =   4
  83.       Top             =   1080
  84.       Width           =   1935
  85.    End
  86. Sub Form_KeyPress (KeyAscii As Integer)
  87.   Unload Me
  88. End Sub
  89. Sub Form_Load ()
  90.   Left = (Screen.Width - Width) / 2
  91. End Sub
  92. Sub OkayButton_Click ()
  93.   Unload Me
  94. End Sub
  95. Sub OkayButton_KeyPress (KeyAscii As Integer)
  96.   Unload Me
  97. End Sub
  98.